home *** CD-ROM | disk | FTP | other *** search
/ Precision Software Appli…tions Silver Collection 1 / Precision Software Applications Silver Collection Volume One (PSM) (1993).iso / windows / games / winpcx2.arj / WINPCX.DEF < prev    next >
Text File  |  1989-10-17  |  645b  |  28 lines

  1. ;module-definition file for WinPcx -- used by link4.exe
  2.  
  3. NAME   WinPcx            ;application's module name
  4.  
  5. DESCRIPTION 'Sample Microsoft Windows Application'
  6.  
  7. STUB   'WINSTUB.EXE'       ;Generates error messages if application
  8.                            ;is run without Windows
  9.  
  10. CODE   MOVEABLE
  11.  
  12. ;Data must be MULTIPLE if program can be invoked more than once
  13.  
  14. DATA   MOVEABLE MULTIPLE
  15.  
  16. HEAPSIZE   1024
  17. STACKSIZE  8192
  18.  
  19. ;All functions that will be called by any Windows routine
  20. ;MUST be exported.
  21.  
  22. EXPORTS
  23.    DoPictFileBox       @1     ;For Chance PCX File Box
  24.    MainProc            @2
  25.    About               @3
  26.  
  27.  
  28.